home *** CD-ROM | disk | FTP | other *** search
- #ifndef _H_LIST_CONSTS
- #define _H_LIST_CONSTS
-
- #ifndef lint
- static const char list_consts_sccs_id[]="%W% %G% %U%: Component-%Y% %Q% ";
- #endif
-
- const int SINGLE = 1 ;
- const int DOUBLE = 2 ;
- const int LOCKED_SINGLE = 3 ;
- const int LOCKED_DOUBLE = 4 ;
-
- const int SINGLE_ITER = SINGLE << 2 ;
- const int DOUBLE_ITER = DOUBLE << 2 ;
- const int LOCKED_SINGLE_ITER = LOCKED_SINGLE << 2 ;
- const int LOCKED_DOUBLE_ITER = LOCKED_DOUBLE << 2 ;
-
-
- // An element is put at the begining of the list, if the queue operation
- // is called with a HIGH priority and it is put at the end of the list,
- // otherwise.
- enum ListElemPriority { HIGH, REGULAR } ;
-
-
- #endif // _H_LIST_CONSTS
-